home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000186_fdc@columbia.edu_Tue Dec 17 14:24:35 EST 2002.msg < prev    next >
Text File  |  2020-01-01  |  3KB  |  62 lines

  1. Article: 13968 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!news.columbia.edu!news-not-for-mail
  3. From: fdc@columbia.edu (Frank da Cruz)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: File transfer over TCP/IP
  6. Date: 17 Dec 2002 14:24:16 -0500
  7. Organization: Columbia University
  8. Lines: 45
  9. Message-ID: <atntl0$fep$1@watsol.cc.columbia.edu>
  10. References: <zxKL9.3959$cN3.580051@news20.bellglobal.com>
  11. NNTP-Posting-Host: watsol.cc.columbia.edu
  12. X-Trace: newsmaster.cc.columbia.edu 1040153065 10188 128.59.39.139 (17 Dec 2002 19:24:25 GMT)
  13. X-Complaints-To: postmaster@columbia.edu
  14. NNTP-Posting-Date: 17 Dec 2002 19:24:25 GMT
  15. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13968
  16.  
  17. In article <zxKL9.3959$cN3.580051@news20.bellglobal.com>,
  18. Daniel Fine <compubwl@idirect.com> wrote:
  19. : After working on serial lines for a while, we now have TCP available.
  20. : We need to do the following.  Transfer a file from the Linux box to the
  21. : Windows Box over the network.  Kermit is up to date on both sides.  I
  22. : want the windows box sitting in server mode and the linux box will
  23. : initiate the transfer.
  24. There are lots of ways to do this.
  25.  
  26. : I've racked my brain on this one and just can't seem to get it
  27. : right. How do I set the network stuff?  In the past I used: set line
  28. : com1 and on the linux side: set line /dev/ttyS0
  29. Yes, and it can be just as simple on the network:
  30.  
  31.   Kermit 95:  set /server host * 3000
  32.   C-Kermit:   set host <ip-name-or-address-of-pc> 3000
  33.  
  34. However, once you set up Kermit 95 to wait for an incoming connection
  35. on port 3000, anybody on the entire planet can connect to it without a
  36. password, probably not what you wanted.  Thus we provide other methods
  37. that are more complicated, but safer.
  38.  
  39. If you have Windows NT, 2000, or XP, you can install Kermit 95 as a
  40. Service:
  41.  
  42.   http://www.columbia.edu/kermit/wiksd.html
  43.  
  44. The primary advantage is that it requires incoming clients to authenticate
  45. securely against your PC's user database.
  46.  
  47. A second choice (which works in Windows 95/98/ME as well as in NT/2000/XP)
  48. is "host mode":
  49.  
  50.   http://www.columbia.edu/kermit/k95host.html
  51.  
  52. A third choice is to turn the process around: make the connection from
  53. Windows to Linux.  After all, Linux is designed for this; no matter how
  54. you come in (serial, Telnet, SSH) you get a login prompt, you log in,
  55. and then you can start Kermit on the far end and use it to exchange files
  56. with your local copy of Kermit on Windows.
  57.  
  58. - Frank
  59.